home *** CD-ROM | disk | FTP | other *** search
/ Champak 128 / Vol 128 (Damaged).iso / games / scooby_d.swf / scripts / __Packages / com / ndimedia / math / geom / Rect.as < prev   
Encoding:
Text File  |  2011-03-26  |  289 b   |  19 lines

  1. class com.ndimedia.math.geom.Rect
  2. {
  3.    var _width;
  4.    var _height;
  5.    function Rect(w, h)
  6.    {
  7.       this._width = w;
  8.       this._height = h;
  9.    }
  10.    function get width()
  11.    {
  12.       return this._width;
  13.    }
  14.    function get height()
  15.    {
  16.       return this._height;
  17.    }
  18. }
  19.